home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
DEBUG
/
STAKWK10
/
UNIT1.PAS
< prev
Wrap
Pascal/Delphi Source File
|
1996-05-10
|
731b
|
43 lines
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
DB, DBTables, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Table1: TTable;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Button1Click(Sender: TObject);
var
x : double;
begin
x := -1;
showmessage(floattostr(ln(x)));
table1.active := true;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
showmessage('Debug hook is '+IntToStr(debughook));
end;
end.